home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 5 #1 / ADA CD-ROM - Alde Publishing.iso / cm / netio.sid < prev    next >
Encoding:
Text File  |  1988-05-03  |  4.9 KB  |  99 lines

  1. --= SID = SIMTEL20 Ada Software Repository Item Description File = SID =--
  2. -- UNIT NAME         : generic package NETWORK_IO
  3. -- VERSION           : 2.0
  4. -- REVIEW CODE       : 
  5. -- DDN ADDRESS       : SALLEN%LOCK.SPAN@Jpl-VLSI.ARPA
  6. -- AUTHOR            : Stanley R. Allen
  7. --                   : Lockheed Engineering Management Services Company
  8. --                   : Computer Systems Engineering Department  MS B08
  9. --                   : Houston, TX  77258
  10. --                   : (713) 333-6120
  11. -- COPYRIGHT         : none
  12. -- DATE CREATED      : Fri 31 Jul 87
  13. -- DATE RELEASED     : Mon 31 Aug 87
  14. -- DATE LAST UPDATED : Mon 31 Aug 87
  15. -- LOCATION          : ASR
  16. -- ENVIRONMENT       : VAX 11/785, VAX 8650, DEC Ada
  17. --= CLASSIFICATION       ===============================================--
  18. -- CATEGORY LEVEL 1  : COMPONENTS
  19. -- CATEGORY LEVEL 2  : INPUT/OUTPUT
  20. -- CATEGORY LEVEL 3  : Network Sequential
  21. -- CATEGORY LEVEL 4  : 
  22. -- KEYWORD           : Network
  23. -- KEYWORD           : Communication
  24. -- INDEX             : Network Sequential I/O
  25. -- INDEX             : Input/Output, Network Sequential
  26. -- TAXONOMY          : COMMUNICATIONS!Abstraction!Network Sequential I/O
  27. -- DEPENDENCIES      : DEC STARLET et al (see Abstract)
  28. -- SEE ALSO          : PD2:<ADA.COMPONENTS>NETMIO
  29. --= FILE LISTING         ===============================================--
  30. -- FILE SPECS        : PD2:<ADA.COMPONENTS>NETIO.*
  31. -- DIRECTORY DISPLAY : 
  32. -- Directory   PD2:<ADA.COMPONENTS>
  33. --      File Name     Byte Count  Line Count
  34. --   ---------------  ----------  ----------
  35. --   NETIO.DIS               175           8
  36. --   NETIO.PRO              4904          98
  37. --   NETIO.SRC             18351         553
  38. --   ===============  ==========  ==========
  39. --     3 Files             23430         659
  40. --= ABSTRACT             ===============================================--
  41. --     This package provides an Ada interface to a communication
  42. -- network.  The model of the network is one that allows tasks on
  43. -- separate nodes to pass messages (message-passing).  The package is
  44. -- designed to be similar to the standard package SEQUENTIAL_IO, with the
  45. -- same basic operations, applicable to networks.  The idea of
  46. -- SEQUENTIAL_IO (just as for the other predefined I/O packages) is
  47. -- machine independent logical operations defined in the spec, and
  48. -- machine dependencies hidden in the private parts and the bodies.
  49. -- Currently NETWORK_IO allows any typed link to be created between two
  50. -- VAX DECnet nodes.
  51. -- 
  52. -- Dependent Units : package SYSTEM, STARLET, CONDITION_HANDLING,
  53. --                   IO_EXCEPTIONS, TASKING_SERVICES.
  54. --= REVISION HISTORY     ===============================================--
  55. -- DATE         VERSION              AUTHOR     HISTORY
  56. -- 08/31/87     2.0                  Allen      Updates
  57. -- 
  58. --     A number of changes have been made to version 1.0:
  59. -- 
  60. --     1)  The name of the abstraction is no longer FILE_TYPE,
  61. --         but is LINK_TYPE instead.  This just seemed to make
  62. --         more logical sense.  The only change made to the
  63. --         source to reflect this was the text substitution
  64. --         LINK for FILE throughout.  This includes the change
  65. --         from IN_FILE and OUT_FILE to IN_LINK and OUT_LINK
  66. --         for MODE_TYPE.  In old programs where you used
  67. --         version 1.0, just make the same global text
  68. --         substitution to upgrade, and recompile.
  69. -- 
  70. --     2)  The body has been changed to use the VAX's TASK_QIOW
  71. --         instead of STARLET.QIOW.  This means that now the
  72. --         network i/o READ and WRITE operation will not suspend
  73. --         the entire VMS process while waiting for completion,
  74. --         only the individual Ada task.
  75. -- 
  76. --     3)  The package no longer uses the VAX-specific 'MACHINE_SIZE
  77. --         attribute to determine the size of the message to be sent.
  78. --         Now 'SIZE is used on the object (as opposed to the type)
  79. --         to be sent.
  80. --= RELEASE NOTICE       ===============================================--
  81. -- This prologue must be included in all copies of this software.
  82. -- 
  83. -- This software is released to the Ada community.
  84. -- This software is released to the Public Domain (note:
  85. --   software released to the Public Domain is not subject
  86. --   to copyright protection).
  87. -- Restrictions on use or distribution:  NONE
  88. --= DISCLAIMER           ===============================================--
  89. --     This software and its documentation are provided "AS IS" and
  90. -- without any expressed or implied warranties whatsoever.  No warranties
  91. -- as to performance, merchantability, or fitness for a particular
  92. -- purpose exist.
  93. --     The user is advised to test the software thoroughly before
  94. -- relying on it.  The user must assume the entire risk and liability of
  95. -- using this software.  In no event shall any person or organization of
  96. -- people be held responsible for any direct, indirect, consequential or
  97. -- inconsequential damages or lost profits.
  98. --======================================================================--
  99.